09b7d5e14e1de743ec74bc9f1da307b0118488ff,bigbluebutton-apps/src/main/java/org/bigbluebutton/conference/service/presentation/PresentationService.java,PresentationService,getSlideInfo,#,42
Before Change
public void getSlideInfo() {
IScope scope = Red5.getConnectionLocal().getScope();
log.debug("Getting slide info for meeting [{}]", scope.getName());
presentationApplication.getSlideInfo(scope.getName(), getBbbSession().getInternalUserID());
}
public void clear() {
After Change
public void getSlideInfo() {
IScope scope = Red5.getConnectionLocal().getScope();
String meetingID = scope.getName();
String requesterID = getBbbSession().getInternalUserID();
// Just hardcode as we don't really need it for flash client. (ralam may 7, 2014)
String replyTo = meetingID + "/" + requesterID;
bbbInGW.getSlideInfo(meetingID, requesterID, replyTo);
}